home *** CD-ROM | disk | FTP | other *** search
- /*
- File: DrwShared.h
-
- Contains: xxx put contents here xxx
-
- Owned by: Nick Pilch
-
- Copyright: © 1994 - 1995 by Apple Computer, Inc., all rights reserved.
-
- Change History (most recent first):
-
- <2> 9/13/95 NP 1269380: Crash with TSMTE and modified
- dialogs.
- <1> 8/30/94 NP first checked in
-
- To Do:
- */
-
- #ifndef _DRWSHARED_
- #define _DRWSHARED_
-
- #ifndef _ODTYPES_
- #include <ODTypes.h>
- #endif
-
- //==============================================================================
- // Forward decls
- //==============================================================================
-
- class AppleTest_Container;
-
- //==============================================================================
- // Types
- //==============================================================================
-
- class PartInfoRec
- {
- public:
- PartInfoRec() { fIsActive = kODFalse; fNeedsActivating = kODFalse; }
- virtual ~PartInfoRec() { }
- RGBColor bgColor;
- RgnHandle bgClipRegion;
- ODBoolean fIsActive; // Does this frame have its focus set?
- ODBoolean fNeedsActivating; // should this be activated when its window
- // is activated?
- };
-
- //==============================================================================
- // Routines
- //==============================================================================
-
- void BringUpTSMTETestDialog(Environment* ev, AppleTest_Container* somSelf,
- ODFrame* frame);
-
- #endif // _DRWSHARED_
-